home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 4810 / 4810.xpi / chrome / speeddial.jar / content / editPluginDial.xul < prev    next >
Extensible Markup Language  |  2010-01-31  |  2KB  |  60 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://global/skin/"?>
  3. <?xml-stylesheet href="chrome://speeddial/skin/editDial.css" type="text/css"?>
  4.  
  5. <!DOCTYPE dialog [
  6. <!ENTITY % dialogDTD SYSTEM "chrome://speeddial/locale/editSpecialDial.dtd">
  7. %dialogDTD;
  8. <!ENTITY % editDialDTD SYSTEM "chrome://speeddial/locale/editDial.dtd">
  9. %editDialDTD;
  10. ]>
  11.  
  12. <dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  13.   xmlns:html="http://www.w3.org/1999/xhtml"
  14.     id="editPluginDialDialog"
  15.     title="&dialogPlugin.title;"
  16.     ondialogaccept="return onOK(event)"
  17.     ondialogcancel="return onCancel(event)"
  18.     ondialogextra2="openFullEdit();"
  19.     onload="Startup();"
  20.     persist="screenX screenY width height"
  21.     buttons="accept,cancel,extra2"
  22.     buttonlabelextra2="&fullEdit.button;">
  23.  
  24.     <script type="application/x-javascript" src="speeddialUtils.js"/>
  25.     <script type="application/x-javascript" src="editPluginDial.js"/>
  26.  
  27.     <stringbundleset id="stringbundleset">
  28.         <stringbundle id="bundle_speeddial" src="chrome://speeddial/locale/speeddial.properties"/>
  29.     </stringbundleset>
  30.   <tabbox flex="1" id="pluginTypes">
  31.     <tabs>
  32.       <tab label="&editPlugin.gadget;"/>
  33.       <tab label="&editPlugin.custom;"/>
  34.     </tabs>
  35.     <tabpanels flex="1">
  36.       <tabpanel orient="vertical">
  37.       <description>&editPlugin.currentgadget;</description>
  38.       <hbox>
  39.         <textbox id="currentGadget" flex="1" readonly="true" value="&editPlugin.nogadget;"/>
  40.       </hbox>
  41.       <description>&editPlugin.newgadget;</description>
  42.       <hbox>
  43.         <textbox id="newGadget" flex="1"/>
  44.       </hbox>
  45.       <description>
  46. &editPlugin.pregadgetlink;<text class="text-link" onclick="openURL('http://www.google.com/ig/directory?synd=open');" value="&editPlugin.gadgetlink;" />&editPlugin.postgadgetlink;
  47.       </description>
  48.       </tabpanel>
  49.       <tabpanel orient="vertical">
  50.         <hbox align="center" pack="start">
  51.           <label value="&url.label;" accesskey="&url.accesskey;" control="url"/>
  52.           <textbox id="url" type="autocomplete" autocompletesearch="history" completedefaultindex="true"
  53.             enablehistory="true" showcommentcolumn="true" flex="1"/>
  54.         </hbox>
  55.       </tabpanel>
  56.     </tabpanels>
  57.   </tabbox>
  58.     <separator class="thin"/>
  59. </dialog>
  60.